home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / ptrp25dm.zip / ETEST3.TRP < prev    next >
Text File  |  1995-01-17  |  285b  |  13 lines

  1. procedure main
  2.         if (true) 
  3.                 writeln('A');
  4.         else
  5.                 if (true)
  6.                         writeln('B')
  7.                 else
  8.                         writeln('C');
  9.                 endif
  10.                 writeln('D');
  11.         endif
  12. endProc
  13.